home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
- * Default fatal error handler for irit. *
- * *
- * Written by: Gershon Elber Ver 0.2, April 1993 *
- *****************************************************************************/
-
- #include <stdio.h>
- #include "irit_sm.h"
-
- /*****************************************************************************
- * Default trap for irit errors. *
- *****************************************************************************/
- void IritFatalError(char *Msg)
- {
- fprintf(stderr, "Irit Fatal Error: %s\n", Msg);
-
- exit(-1);
- }
-